|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
DeadlineExpressionImpl.java | - | 0% | 0% | 0% |
|
1 |
/*
|
|
2 |
* $Id: DeadlineExpressionImpl.java,v 1.1 2004/12/15 14:18:10 patforna Exp $
|
|
3 |
*
|
|
4 |
* Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
|
|
5 |
* Berne University of Applied Sciences
|
|
6 |
* School of Engineering and Information Technology
|
|
7 |
* All rights reserved.
|
|
8 |
*/
|
|
9 |
package bexee.model.expression.impl;
|
|
10 |
|
|
11 |
import bexee.model.expression.DeadlineExpression;
|
|
12 |
|
|
13 |
/**
|
|
14 |
* A default implementation of the <code>DeadlineExpression</code>.
|
|
15 |
*
|
|
16 |
* @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:10 $
|
|
17 |
* @author Patric Fornasier
|
|
18 |
* @author Pawel Kowalski
|
|
19 |
*/
|
|
20 |
public class DeadlineExpressionImpl extends ExpressionImpl implements |
|
21 |
DeadlineExpression { |
|
22 |
|
|
23 |
//**************************************************/
|
|
24 |
// c'tors
|
|
25 |
//**************************************************/
|
|
26 |
|
|
27 | 0 |
public DeadlineExpressionImpl(String deadlineExpression) {
|
28 | 0 |
super(deadlineExpression);
|
29 |
} |
|
30 |
|
|
31 |
//**************************************************/
|
|
32 |
// bexee.model.expression.Expression
|
|
33 |
//**************************************************/
|
|
34 |
|
|
35 |
/*
|
|
36 |
* (non-Javadoc)
|
|
37 |
*
|
|
38 |
* @see bexee.model.expression.Expression#evaluate()
|
|
39 |
*/
|
|
40 | 0 |
public boolean evaluate() { |
41 | 0 |
return false; |
42 |
} |
|
43 |
|
|
44 |
//**************************************************/
|
|
45 |
// bexee.model.expression.DeadlineExpression
|
|
46 |
//**************************************************/
|
|
47 |
|
|
48 |
/*
|
|
49 |
* (non-Javadoc)
|
|
50 |
*
|
|
51 |
* @see bexee.model.expression.DeadlineExpression#setDeadlineExpression(java.lang.String)
|
|
52 |
*/
|
|
53 | 0 |
public void setDeadlineExpression(String deadlineExpression) { |
54 | 0 |
setExpressionLitteral(deadlineExpression); |
55 |
} |
|
56 |
|
|
57 |
/*
|
|
58 |
* (non-Javadoc)
|
|
59 |
*
|
|
60 |
* @see bexee.model.expression.DeadlineExpression#getDeadlineExpression()
|
|
61 |
*/
|
|
62 | 0 |
public String getDeadlineExpression() {
|
63 | 0 |
return getExpressionLitteral();
|
64 |
} |
|
65 |
|
|
66 |
} |
|